In This Topic
The following tables list the members exposed by NDeque<T>.
Public Constructors
Public Methods
| Name | Description |
| PeekBack | Returns the last item from the deque, without removing it. |
| PeekFront | Returns the first item from the deque, without removing it. |
| PopBack | Removes and returns the last item from the deque. |
| PopFront | Removes and returns the first item from the deque. |
| PushBack | Pushes the item at the back of the deque (makes it the last item in the deque) |
| PushFront | Pushes the item at the front of the deque (makes it the first item in the deque) |
Top
See Also